home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 66
/
Vol 66.iso
/
games
/
compulse.swf
/
scripts
/
DefineSprite_54_starX
/
frame_1
/
DoAction.as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2013-04-24
|
230 b
|
15 lines
xVel = random(10) - 5;
yVel = random(10) - 5;
grav = 0.3;
onEnterFrame = function()
{
yVel += grav;
_X = _X + xVel;
_Y = _Y + yVel;
_alpha--;
if(_alpha <= 0)
{
this.removeMovieClip();
}
};